1
For Sale / Wanted / C860 + Accessories For Sale
« on: January 21, 2006, 10:39:45 pm »
I've listed this on ebay now. link
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Just one more question: there is a way to actually associate the 'rotate' key (cmd + ") to the rotation function? That would be useful indeed.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=109375\"][{POST_SNAPBACK}][/a][/div]
d.maddock1: What version of IRK are you using?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=108991\"][{POST_SNAPBACK}][/a][/div]
May sound like a silly question, but: how to create new macros?
I've managed to get a pocketop keyboard to work with OZ and I have done some minor tweaking at the configuration, e.g. making the CMD+Address combo popping up the menu.
But how to add new combos? The 'new' button on the configuration panel of IRK doesn't seems to work (unless I am missing something really basilar). I would like too to have CMD+a sorting out #8217
And how to create more macros? Would be pretty to have a console pop-up just on the pressure of a button
[div align=\"right\"][a href=\"index.php?act=findpost&pid=108558\"][{POST_SNAPBACK}][/a][/div]
zcopyto:
#!/usr/bin/expect -f
set user [lindex $argv 0]
set host [lindex $argv 1]
set pass [lindex $argv 2]
set source [lindex $argv 3]
set dest [lindex $argv 4]
spawn sh -c "scp '$source' $user@$host:$dest"
expect "assword:" {send $pass\r}
expect eof
zcopyfrom:
#!/usr/bin/expect -f
set user [lindex $argv 0]
set host [lindex $argv 1]
set pass [lindex $argv 2]
set source [lindex $argv 3]
set dest [lindex $argv 4]
spawn sh -c "scp $user@$host:$source '$dest'"
expect "assword:" {send $pass\r}
expect eof
zremovefrom:
#!/usr/bin/expect -f
set user [lindex $argv 0]
set host [lindex $argv 1]
set pass [lindex $argv 2]
set file [lindex $argv 3]
spawn ssh $user@$host
expect "assword:" {send $pass\r}
send "rm $file\r"
send "exit\r"
expect eof Â
zclearinbox:
#!/usr/bin/expect -f
set user [lindex $argv 0]
set host [lindex $argv 1]
set pass [lindex $argv 2]
spawn -noecho ssh $user@$host
expect "assword:" {send $pass\r}
send "cat /dev/null > /home/zaurus/Documents/Text_Files/inbox.txt\r"
send "exit\r"
expect eof
--
--
-- Settings
--
--
set the_user to "zaurus"
set the_pass to ""
set the_iP to ""
set toZDirectory to "Macintosh HD:Users:dave:Desktop:ToZ"
--
--
-- Process Zaurus Inbox File
--
--
-- Get the inbox file from the zaurus via Samba
set zInboxFile to quoted form of "/home/Main_Memory/Text_Files/inbox.txt"
set localInboxFile to "Macintosh HD:tmp:inbox.txt"
set cmd to ("cd /tmp; smbget -n -q -u " & the_user & " -p " & the_pass & " smb://" & the_iP & zInboxFile & "; echo 0" as Unicode text)
do shell script cmd
-- Read through the inbox file
tell application "Finder"
set InboxFile to paragraphs of (read file localInboxFile)
repeat with nextLine in InboxFile
 if length of nextLine is greater than 0 then
Â
 -- Add the line to the KGTD inbox
 tell application "OmniOutliner Professional"
  set ThisDocument to first document
  tell ThisDocument
  set InboxSection to (first section whose note contains "meta_inbox")
  make new row at beginning of rows of InboxSection with properties {topic:nextLine}
  end tell
 end tell
Â
 end if
end repeat
-- Erase temp file
move file localInboxFile to trash
end tell
-- Clear the inbox on the Zaurus
set cmd to ("/Users/dave/bin/zclearinbox " & the_user & " " & the_iP & " " & the_pass)
do shell script (cmd)
--
--
-- Sync Crossword Puzzles
--
--
do shell script ("/Users/dave/bin/getpuz.sh")
--
--
-- Sync ToZ Directory
--
--
tell application "Finder"
if (the file (toZDirectory & ":BBC News.pdb") exists) then
 set a to quoted form of POSIX path of (toZDirectory & ":BBC News.pdb")
 set cmd to ("/Users/dave/bin/zcopyto " & the_user & " " & the_iP & " " & the_pass & " " & a & " " & "/mnt/card/Documents")
 do shell script (cmd)
Â
 move file (toZDirectory & ":BBC News.pdb") to trash
end if
-- TODO: copy all files here into appropriate zaurus folders according to type
end tell
--
--
-- Sync iTunes Playlist
--
--
tell application "iTunes"
set myPlaylist to playlist "ToZaurus"
repeat with aTrack in (get every track of myPlaylist)
 set fileName to location of aTrack
 set a to quoted form of POSIX path of fileName
 set cmd to ("/Users/dave/bin/zcopyto " & the_user & " " & the_iP & " " & the_pass & " " & a & " " & "/mnt/card/Documents/Music_Files/")
 do shell script (cmd)
Â
 --TODO: remove track from the playlist
end repeat
end tell
--
--
-- Done
--
--
display dialog ("Sync Done.")
I am in the market for a new handheld, one which will read my existing fiction files (mostly HTML and iSilo), so OpieReader seems like a great solution. Now I just need a machine to run it!
I am a Linux novice, and I don't really want to become an expert, at least not right away. If I buy one of the recent clamshell Zaurii (Dynamism or eBay), which ROMs could I use and still have OpieReader run? Better yet, which ROMs will it run on without a lot of tweaking.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=90110\"][{POST_SNAPBACK}][/a][/div]
Cool, this is really great news!
Although my SL5K is currently flashed with Sharp ROM v3.13 I would like to know if the ZMacSync (Tiger/Panther) do work with TKC ROMs?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=88833\"][{POST_SNAPBACK}][/a][/div]
but for iCal, only copy... not really sync Mac -> Z copy
...
for Addressbook
it syncs for Mac -> Z
How did it perform on the Clie?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=79303\"][{POST_SNAPBACK}][/a][/div]