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
@interface TSInputAccessoryView() | |
{ | |
CGSize _keyboardSize; | |
BOOL _isKeyboardShown; | |
} | |
@end | |
@implementation TSInputAccessoryView | |
- (id)init |
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
// もはや動いていなかったので削除 | |
// 修正していただい版をご利用ください | |
// https://gist.github.com/jnory/b39cd65508fbaa2fa39ebed932ca47a7 |
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
$('<style type="text/css">').appendTo('head').get(0).sheet.insertRule('.selected>.name>#controls>#controlsLeft { left: 100px; top: 45px; }', 0); | |
$("#header").css("min-width", "0px"); | |
$("#logo").hide(); | |
$("#helpButton").hide(); | |
$(".showCompletedButton").html($(".showCompletedButton").html().replace("Completed:","✓").replace("Hidden","😪").replace("Visible","😳")).css("width", "auto"); | |
// 以下余白 | |
// Complete:Visible/Hidden 自体が要らないのであれば、5行目を | |
// $(".showCompletedButton").hide(); | |
// に差し替えると消えます。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("workflowy.com") { | |
.selected>.name>#controls>#controlsLeft { | |
left: 100px; | |
top: 45px; | |
} | |
#header { | |
min-width: 0px; |
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
// ==UserScript== | |
// @name wf_contexual_topic_url.user.js | |
// @namespace https://gist.github.com/takasek/03d77898bbef686ed189 | |
// @description WorkFlowyのコンテキストメニューに、トピックのURLをコピペできるテキストボックスを追加 | |
// @include https://workflowy.com/* | |
// @version 2 | |
// @grant none | |
// ==/UserScript== | |
(function() { |
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
// ==UserScript== | |
// @name wf_japanese_shortcuts.user.js | |
// @namespace https://gist.github.com/takasek/ | |
// @description WorkFlowyのキーボードショートカット日本語化 | |
// @include https://workflowy.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(function() { |
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
print("hello world!") |
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
let view = { | |
let v = UIView() | |
v.backgroundColor = UIColor.redColor() | |
v.layer.cornerRadius = 2 | |
v.layer.borderWidth = 1 | |
return v | |
}() |
OlderNewer