This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: Flycut [54134] | |
Path: /Applications/Flycut.app/Contents/MacOS/Flycut | |
Identifier: com.generalarcade.flycut | |
Version: 1.9.6 (9) | |
Code Type: ARM-64 (Native) | |
Parent Process: launchd [1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Configure solarized-theme package as suggested | |
(use-package solarized-theme | |
:config | |
;; Use solarized-dark instead of solarized-light | |
(load-theme 'solarized-dark t) | |
(let ((line (face-attribute 'mode-line :underline))) | |
(set-face-attribute 'mode-line nil :overline line) | |
(set-face-attribute 'mode-line-inactive nil :overline line) | |
(set-face-attribute 'mode-line-inactive nil :underline line) | |
(set-face-attribute 'mode-line nil :box nil) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# This is a test comment. Imagine I was writing some lengthy explanation of an | |
odd subtlety in this template's behavior, and at some point, I reached a | |
point where I wanted to refill the paragraph, so I pressed M-q. web-mode | |
will mangle the following code badly. #} {% for diff in commit.diffs %} | |
<div class="source-view"> <div class="source-header"> <div class="meta"><a | |
name="{{ loop.index }}">{{ diff.file }}</div> </div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
This is a test comment. Imagine I was writing some lengthy explanation | |
of an odd subtlety in this template's behavior, and at some point, I | |
reached a point where I wanted to refill the paragraph, so I pressed | |
M-q. web-mode will mangle the following code badly. | |
#} | |
{% for diff in commit.diffs %} | |
<div class="source-view"> | |
<div class="source-header"> | |
<div class="meta"><a name="{{ loop.index }}">{{ diff.file }}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
"""Tools for running threads behind a wx.ProgressDialog.""" | |
# Standard library imports. | |
import sys | |
import threading | |
import time | |
# Third party imports. |