Here is "Guides: Using the EGit Eclipse Plugin with GitHub":
http://github.com/guides/using-the-egit-eclipse-plugin-with-github

However, Egit could not connect by ssh on Windows when I used cygwin for ssh+git. Egit try to find .ssh on HOME directory on Windows(C:\Users\makoto_kw), but it is on HOME directory on cygwin(/cygwin/home/makoto_kw).

I could relate to .git with Egit after importing a project

  1. git clone on cygwin

    git clone git@github.com:makotokw/php-twient.git
  2. Create new project on Eclipse
    • Chose directory cloned above
  3. Context menu of the project > Team > Share Project… > Git
  4. Egit find .git automatically and select "Finish" button

That’s all!

php-twient is here: http://github.com/makotokw/php-twient

I did not want to develop twitter library. But, I have to work wituout php_curl.

php-twient is:

  • PHP5 Object Oriented
  • Supports basicAuth and OAuth both
  • Supports autoload
  • Should work with/without php_curl (auto detect php_url)

future:

  • Supports more twitter API (v0.1 is statuses API only)
  • Fix that OAuth part use php 5.3 Deprecated function

I was(am?) Syntaxhighlighter for Movable Type author. I developed it because I never find Alex Gorbatchev Syntaxhighlighter plugin for Movable Type.

I used the Syntaxhighlighter Evolved on WordPress. I have to make it apply to some entries of Movable Type. Then, I developed two plugins work with Syntaxhighlighter Evolved.

1) for Syntaxhighlighter for Movable Type
change Syntaxhighlighter for Movable Type style(code:lang) to Syntaxhighlighter Evolved style(code class=”lang”)

2) for Legacy style (Syntaxhighlighter 1.5 style)
highlightcode <pre name="code" class="c"></pre>
Syntaxhighlighter Evolved (2.3.6) dose not support legacy style. It needs to ugrade:
http://alexgorbatchev.com/wiki/SyntaxHighlighter:Upgrading

My Japanese blog (kwlog) have be published Movable Type for three years. I decided to switch to the WordPress because I could not use the Movable Type 5 intuitively.

I haved moved 1500 entries to WordPress. Now, I am writhing the plugin insted of Movable Type plugin (ex. textfilter)… I am sorry that I leave to develop a Movable Type plugin maybe, and I’ll become a wordpress plugin developer. :)

I released SyntaxHighlighter for Movable Type version 0.1.1:

http://blogspot.makotokw.com/portfolio/movabletype/syntaxhighlighter/
http://blog.makotokw.com/portfolio/movabletype/syntaxhighlighter/ (in Japanese)

This version had latest SyntaxHighlighter (2.0.320) and supported more languages (ActionScript3, etc…) And supported “Page” text filter, works the Movable Type 5beta.

Also, fixed some bugs. The SyntaxHighlighter 2 has own event handler for window.onload, but SyntaxHighlighter did’t not work on some case becuase version 0.1.0 added function to window.load too. In version 0.1.1, this plugin do noting for window.onload.

(last updated) 2009-05-17

I would like to intoduce adding custom theme to widgets I developed.

“My Outlook Today” and “My Google Calendar” are calendar widgets. My Outlook Today 1.2 of and My Google Calendar have a function to change appearance. And My Outlook Today 1.2.1 and My Google Calendar 1.0.1 will search custom theme on widget folder when its start up.

Custom Theme file structure

/MyWidgets/MyOutlookToday/theme  (/MyWidgets/MyGoogleCalendar/theme)
   /theme1      -- theme name. displayed on widget preferences.
      /theme.js   -- style settings
      /*.png     -- image files

MyWidgets folder is at C:\Users\{UserName}\Documents\My Widgets on Windows Vista, C: \Documents and Settings\{UserName}\My Documents\My Widgets on Windows XP, or ~/Documents/Widgets on MacOSX.

theme.js

theme.js is simply json data follow:

{
	padding:[0,0,0,0],  // padding for background
	defaultFont:'Catull', // default font
	titleCss:{textAlign:'center'}, // header text style
	titleColor:['#9EA8AF',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}], // color, shadow settings
	textColor:['#808080',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	headerColor:['#514A4C',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	remainColor:['#f7d60a',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	emptyItemColor:['#808080',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	completedItemColor:['#DE7008',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	justbeforeItemColor:['#d92d29',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	currentItemColor:['#DADADA',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	footerColor:['#9EA8AF',{color:'#000000',vOffset:0,hOffset:-1,opacity:190}],
	apptIconColor:['#808080'], // Appointment colorize
	taskIconColor:['#EFA763','#6767F2','#808080','#EF5656'] // Done,Low,Normal,High for Task
}

image files are for background and icon.

background image files

background using 9 files (nine-grid) and 1 file(divider).

top_left.png
top.png
top_right.png
left.png
center.png
right.png
bottom_left.png
bottom.png
bottom_right.png
line.png

Nine-grid rendering allows you to preserve the original dimensions of the corners (top_left, top_right, bottom_left, and bottom_right). The top and bottom are stretched horizontally only, and the sides left and right are stretched vertically only. The center is stretched in both dimensions.

icon files

icon_current.png current or near appointment
icon_event.png event icon
icon_task.png task icon
icon_next.png arrow right
icon_prev.png arrow left
icon_schedule.png calendar view icon(My Google Calander never use)
icon_tasklist.png task view icon(My Google Calander never use)
icon_today.png today icon
icon_back.png today icon to return
icon_forward.png today icon for return
icon_loading.gif loading icon(My Outlook Today never use because it load sync)

for example

I tried to create new theme named “wood”.

  1. create image files by Fireworks CS4 :)
  2. copy style.js and image files to C:\Users\makoto_kw\Documents\My Widgets\MyOutlookToday\theme\wood
  3. run My Outlook Today widget and open preferences
  4. select wood at theme
  5. That’s all!

    sample theme download

    I understand this function is very simple and is not usefule yet. Please let me know you have any problems , questions and ideas. # give me beautiful theme you designed also :)

Demo: jquery.ui.potato.menu
Source Code and Download: github

I read “300+ Jquery, CSS, MooTools and JS navigation menus” and look for jQuery plugin for menu. But I didn’t know which plugin is best way to use.

So… I have created new jQuery menu plugin.