V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  minamike  ›  全部回复第 213 页 / 共 234 页
回复总数  4661
1 ... 209  210  211  212  213  214  215  216  217  218 ... 234  
2017-03-28 21:43:44 +08:00
回复了 Famio 创建的主题 问与答 壁纸荒了,各位可以晒一波壁纸吗?我也顺便收割点
2017-03-28 18:58:39 +08:00
回复了 jswh 创建的主题 分享发现 一个简单的个人主页
更新了一个
现学现做的 = =
http://mayuzumi.me
网站配色可怕
2017-03-27 18:42:13 +08:00
回复了 Nathanzheng 创建的主题 问与答 求一个关闭/打开 Fn 功能键的 Workflow,
@Nathanzheng 你时用的 Alfred 的吗 keyword 就是运行这个命令的关键词啊
你用快捷键呼出 alfred 窗口输入设定的 keyword 就可以运行这个命令
也可以直接用快捷键啊 两者任选一个就可以
2017-03-27 17:24:52 +08:00
回复了 Patrik 创建的主题 macOS [macOS]有人用 magnet 分屏的吗?好像有会导致系统卡顿的奇怪 bug
2017-03-27 17:17:42 +08:00
回复了 Nathanzheng 创建的主题 问与答 求一个关闭/打开 Fn 功能键的 Workflow,
如果是 mac 的话可以用 AppleScript
```
tell application "System Preferences"
set current pane to pane "com.apple.preference.keyboard"
end tell


tell application "System Events"
if UI elements enabled then
tell tab group 1 of window "Keyboard" of process "System Preferences"
click checkbox "Use F1, F2, etc. keys as standard function keys"
end tell
else
tell application "System Preferences"
set current pane ¬
to pane "com.apple.preference.universalaccess"
display dialog ¬
"UI element scripting is not enabled. Check \"Enable access for assistive devices\""
end tell
end if
end tell

tell application "System Preferences"
quit
end tell
```
Alfredworkflow : https://github.com/packal/repository/blob/master/com.tanseycg.togglefunctionkeys/toggle_function_keys.alfredworkflow
2017-03-24 23:00:40 +08:00
回复了 jswh 创建的主题 分享发现 一个简单的个人主页
用 tiddlywiki 做的 移动端基本不能看 = =
sidmao.github.io
2017-03-24 09:50:51 +08:00
回复了 Baymaxbowen 创建的主题 长沙 所以到底现在适不适合买房?
买房最适合的时间是十年前,或者是现在(抠鼻
2017-03-22 22:48:57 +08:00
回复了 dreamin 创建的主题 分享创造 微信文章 PC 在线浏览,我终于折腾成功了。
一次震惊个够
2017-03-22 12:11:18 +08:00
回复了 moonkiller 创建的主题 macOS Mac 下有什么无需转码,直接剪切的视频工具啊
至少说一下影片格式吧
2017-03-22 09:55:38 +08:00
回复了 shetz163 创建的主题 分享创造 用 VUE.JS 做了一个学五十音图的网页
测试时有时候会有重复选项 = =
2017-03-21 20:49:25 +08:00
回复了 zhaidoudou123 创建的主题 iPad 新的 iPad 9.7..
红色的 iPhone 还挺好看的
2017-03-21 20:40:36 +08:00
回复了 xi_lin 创建的主题 配件 有啥推荐的 iPad 用笔不?
曾经买过 Wacom Intuos Creative Stylus 2
后来感觉对我来说没什么用又卖了
不知现在出到第几代了 = =
2017-03-14 21:30:48 +08:00
回复了 Rodanna 创建的主题 Apple 有没有什么软件可以把 Finder 里的音乐批量去除封面?
打开 iTunes 时按 option 新建一个 library 然后导入你的音乐 然后全选 然后运行一下 Apple Script
```
tell application "iTunes"
set fx to fixed indexing
set fixed indexing to true
copy (a reference to (get view of front window)) to thisPlaylist
if item 1 of selection exists then -- test if there is a selection...
set using_selection to true
copy (count selection's items) to idx
else -- its the whole playlist
set selectedTracks to (get a reference to thisPlaylist)
set using_selection to false
copy (count thisPlaylist's tracks) to idx
end if

-- later...

repeat with j from 1 to idx
if using_selection then
copy item j of selection to thisTrack
else
copy track j of selectedTracks to thisTrack
end if

delete artworks of thisTrack

end repeat
set fixed indexing to fx
end tell
```
from http://dougscripts.com/itunes/scripts/ss.php?sp=removeartwork
2017-03-12 10:59:42 +08:00
回复了 diveIntoWork 创建的主题 macOS mac 下的网页标签管理软件?
applescript
```
(*
Veritrope.com
Open Chrome Tabs in Safari
Version 1.0
April 18, 2011

// TERMS OF USE:
This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.

// LIKE THIS SCRIPT?
If this AppleScript is helpful to you, please show your support here:
http://veritrope.com/support

// SCRIPT INFORMATION AND UPDATE PAGE
http://veritrope.com/code/open-chrome-tabs-in-safari

// REQUIREMENTS
More details on the script information page.

// CHANGELOG
1.0 Initial Release

*)

(*
======================================
// MAIN PROGRAM
======================================
*)

set list_Tabs to {}

tell application "Google Chrome"
set the_Tabs to (tabs of every window)
repeat with the_Tab in the_Tabs
set the_Items to (every item of the_Tab)
repeat with the_Item in the_Items
copy URL of the_Item to end of list_Tabs
end repeat
end repeat
end tell

tell application "Safari"
repeat with list_Tab in list_Tabs
set myTab to make new tab at end of tabs of window 1
set URL of myTab to list_Tab
end repeat
end tell
```

来自 http://veritrope.com/code/open-chrome-tabs-in-safari/
2017-03-12 09:11:20 +08:00
回复了 minamike 创建的主题 Apple [更新] 网易云音乐 Alfred Workflow
@chengfu 要买 powerpack 才能用 workflow
MAS 版还不如自带 spotlight
2017-03-10 13:49:53 +08:00
回复了 minamike 创建的主题 Apple [更新] bilibili Alfredworkflow
@nichijou 你在出现搜索列表的时候直接按 option+回车 能播放吗
2017-03-10 09:23:17 +08:00
回复了 minamike 创建的主题 Apple [更新] bilibili Alfredworkflow
@nichijou 那你在终端里运行一下这条命令看看能不能出现 html 页面的代码
curl -H "Accept-Encoding: gzip" http://www.bilibili.com/video/av6490965/ | gunzip
2017-03-10 08:39:18 +08:00
回复了 minamike 创建的主题 Apple [更新] bilibili Alfredworkflow
@nichijou 看起来是 curl 没有获取到这个页面的内容 但是我这儿可以播放这个 av 号诶 你是所有视频都无法播放还是就这一个无法播放啊
2017-03-09 19:43:39 +08:00
回复了 Explorare 创建的主题 问与答 [日经] 关于数据备份
OneDrive 1T 够我用了
要倒了的话巨硬药丸
1 ... 209  210  211  212  213  214  215  216  217  218 ... 234  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2106 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 110ms · UTC 01:53 · PVG 09:53 · LAX 18:53 · JFK 21:53
Developed with CodeLauncher
♥ Do have faith in what you're doing.