November 1, 2015 #mac

Can’t remember how many times I’ve been bothered by the red dotted underlines telling me “favorite”, “customize” are spelled wrong… apparently the system is using British English to check the spell.

Here is how to change it the use to American English.

Go to System Preferences -> Keyboard -> Text, Change Spelling to U.S. English.

mac change spelling to use american english

December 16, 2011 #iphone #mac #alfred #ios5 #reminder

Update

If you already upgraded to Moutain Lion OSX, you definetly don't need this, there is a navtive Reminder app built in :)

Original Post

You need to install Powerpack.

You can download Alfred extension here: http://www.dirtdon.com/?p=1261

Then launch your alfred, and type r foo, bar to create the reminder.
You can get the notification of Growl after it's done.

Create iOS 5 Reminders Tasks from Alfred

日本語

前提

AlfredおよびそのPowerpackのインストールが必要になります。

方法

http://www.dirtdon.com/?p=1261でAlfred用のExtensionをダウンロードしインストールします。

そうしますと、Alfred呼び出してr hogehogeでリマインダーが作成できます。

作成完了後はGrowlで通知もしてくれますー

Alfredについて

超オススメです。試してみてくださいー 特にPowerpack購入後は一気にパワーアップですよ!

June 4, 2011 #mac #ide #textmate

現象

Railscastsで紹介したhttps://github.com/jezdez/textmate-missingdrawerProject Drawerのプラグインをインストールした後に、ターミナルやTextMateのGUIでフォルダを開くときに画面が真っ白になる。ファイル一つ一つは開ける。

ターミナルで開いた時はこんなエラーを吐き出される:

mate*19082:903] Exception raised during posting of notification.  Ignored.  exception: '[NOTE: this exception originated in the server.*
 -*NSCFArray objectAtIndex:]: index (1) beyond bounds (1)'  invoked observer method: '-[OakLaunchHelper didLaunchTextMate:*'  observer: 0x1128a0  notification name: 'NSWorkspaceDidLaunchApplicationNotification'

原因

昔ProjectPlusというProject Drawerをインストールしたことがあり、どうやらその二つが衝突しているよう。

対策

~/Library/Application Support/TextMate/Plugins/ProjectPlus.tmpluginを削除

参考:http://ticket.macromates.com/show?ticket_id=188F672C

July 7, 2010 #mac

Macではドット"."で始まるファイルやフォルダは隠しフォルダ、ファイルになるようです。
Finderで表示する方法を紹介します。
はるか昔のメモです。。

  1. ターミナルを開く(アプリケーション/ユーティリティ)
  2. 下記コマンドを叩いてreturnキーを押して実行
  3. ```plain defaults write com.apple.finder AppleShowAllFiles -bool true killall Finder ```
  4. ログアウト、あるいはkillall Finderで効果が見れます

隠しファイルを非表示にするには

上記と全く同じ手順で、コマンドを書き換えます。

defaults write com.apple.finder AppleShowAllFiles -bool false

English

Viewing hidden files on a Mac is useful for accessing the hidden UNIX directories or for recovering Music from an iPod. Additionally, by prefixing the name of a folder with a '.', you can create a folder that is seemingly hidden from prying eyes.

To view hidden folders:

  1. Open the Terminal (located in /Applications/Utilities/)
  2. At the command prompt type
defaults write com.apple.finder AppleShowAllFiles -bool true

  1. Press return to execute the command.
  2. For the changes to take effect, either log out then log back in again, or relaunch Finder (this can be done from the Force Quit Window or by typing 'killall Finder' in a Terminal window).

To hide the hidden files again:

  1. Open the Terminal
  2. At the command prompt type
defaults write com.apple.finder AppleShowAllFiles -bool false

  1. then press return to execute the command.
  2. Log out then back in again, or relaunch Finder (explained above).