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
"rules": [ | |
{ | |
"description": "Ctrl-j to Kana on PowerPoint", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.microsoft\\.Powerpoint" | |
], |
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 | |
""" | |
The Needleman-Wunsch Algorithm | |
============================== | |
This is a dynamic programming algorithm for finding the optimal alignment of | |
two strings. | |
Example | |
------- |
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
import asyncio | |
import random | |
class Hub(): | |
def __init__(self): | |
self.subscriptions = set() | |
def publish(self, message): |
対応バージョン: 3.7.2218.55
例文を組み込んだAlfred Workflowを作りました: Alfred Git Commit Message Example
以下転載:
Macのみで動作確認。
- Makefile
- test.cc
- mainのプログラム
- myclass.hh
- myclass.cc
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
#!/bin/ruby | |
# Based on http://blog.teapla.net/2015/05/5444 | |
TOUCH_FILE = ENV["HOME"] + "/.imeoff" | |
INTERVAL_SEC = 10 | |
if not File.exists?(TOUCH_FILE) or Time.now - File.ctime(TOUCH_FILE) > INTERVAL_SEC | |
system("osascript -e 'tell application \"System Events\" to key code 102'") | |
system("touch #{TOUCH_FILE}") | |
end |
に色々載ってたけど
でやってみた。リッチテキストのひとつとしてMarkdownを加えてるっぽい。
NewerOlder