1、図形を作成、選択
2、選択したままメニューの[Arrange] > [Make Table]を選択
完了。ショートカット Cmd + Shift + T を覚えると便利
1、図形を作成、選択
2、選択したままメニューの[Arrange] > [Make Table]を選択
完了。ショートカット Cmd + Shift + T を覚えると便利
command + Shift + pで「Command Palette」を開いて、
“Package Control:Install Pacage”を選択→”Emmet”をインストール。
(ZenCodingがはいっていたら、”Package Control:Remove Pacage”を選択”ZenCoding”をアンインストールしておく)
まず、個人的にはタブキーよりは、指の移動距離が少ないと思っている、”Ctrl+,”で展開しているので設定します。
command + Shift + pで「Command Palette」を開いて、
ショートカットキーをCtrl + , に設定したいメモ
[Key Bindings User]を以下に設定
[ { "keys": [ "ctrl+," ], "args": { "action": "expand_abbreviation" }, "command": "run_emmet_action", "context": [ { "key": "emmet_action_enabled.expand_abbreviation" } ] } ]
$defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnabled -bool YES
チャットワークでのショートカットが便利です!!
代替のwebアプリにはショートカットがあり、チャットワークもどうかなと試してみたらありました。
いつも忘れるのでメモします。
<dt>生年月日</dt> <dd> <?php $params = array( 'label'=>false, 'div'=>false, 'class'=>'birthday', 'dateFormat' => 'YMD', 'minYear' => date('Y') - 100, 'maxYear' => date('Y') - 10, 'monthNames' => false, 'separator'=>'', 'empty'=>'--' ); if(empty($this->data)){ $params['selected'] = array('year'=>0,'month'=>0,'day'=>0); } echo $this->Form->input('birthday',$params); ?> </dd> <script type="text/javascript"> $(function(){ $('#UserBirthdayYear').after('年'); $('#UserBirthdayMonth').after('月'); $('#UserBirthdayDay').after('日'); }); </script>
いつも忘れてしまうのでメモ。
ssh-keygen -p -f ~/.ssh/id_rsa
メモ。
<?php App::uses('Mysql', 'Model/Datasource/Database'); class MysqlCustom extends Mysql{ public function connect() { $r = parent::connect(); if ( $r ) { if ( isset($this->config['time_zone']) ) { $qry = sprintf( "SET @@time_zone = '%s'", $this->config['time_zone'] ); $this->query( $qry ); //CakeLog::debug($qry); } } return $r; } } ?>
$.removeCookie('the_cookie');
$.cookie('the_cookie','',{expires:-1});
$.cookie('the_cookie',null); $.cookie('the_cookie'); // 'null' String
Powered by WordPress & Theme by Anders Norén