Topics - jgpaiva [ switch to compact view ]

Pages: prev1 ... 25 26 27 28 29 [30] 31 32 33next
146
Developer's Corner / Lisp IDE
« on: February 23, 2006, 04:35 PM »
I'm going to start learning Lisp this week in university, but i found this problem.
As I'm not much informed, I'd like some information about Lisp and specially on Lisp IDEs.
I know the basics of EMACS (only a few keybindings and basic concepts), and I'm mostly convinced to use it.
But I've been told to use allegro, and also CLisp.
Can anybody give me some information so as I can get more informed?
Thanks!

147
General Software Discussion / Is this a good way to fight spam?
« on: February 23, 2006, 06:10 AM »
I just found this site.
There are a few sites like this, that work as decoy for spam bots.
Is this really a good way to stop spam, or just another way of losing time? ;)

148
Finished Programs / Scrolling windows other than the active one
« on: February 23, 2006, 04:44 AM »
When i got myself another monitor, the feature that i looked for the most was the ability to code in one monitor and see the "what to do" list on the other monitor.
But the problem was that i had to scroll the window with the "to do list" and for that, I'd have to use my mouse, or alt-tab into it.
So, i created a ahk script to do what the ctrl+meta+v key does in emacs: scroll the other window.
This script has the ability of storing 9 windows and scroll each of them, restoring the focus to the original window after it scrolls the others.
In early times, it used MW_VSCROLL message, but that message doesn't work with adobe acrobat, so, i changed it to the "send" keys, so now it activates the window, sends specified keys to scroll the window, and reactivates the last window.
I hope you like it:

#SingleInstance, Force

;Pressing win+alt+numpad# stores the current window under #.
;For scrolling up the # window, press win+#
;For scrolling down the #window, press ctrl+win+#
KeyUp={Up} ;the Up arrow will be sent to scroll up
KeyDown={Down} ;the down arrow will be sent to scroll the window down.
;To use the page up and down to scroll the windows, replace 'up' and
;'down' by PgUp and PgDn
loop 9
{
  MMWindow%A_Index%=
  MMWinCtrl%A_Index%=
  Hotkey,!#Numpad%A_Index%, Save
  Hotkey,#NumPad%A_Index%, ScrollDown
  Hotkey,^#NumPad%A_Index%, ScrollUp
}
return

Save:
  StringRight, MMKeyID, A_ThisHotkey, 1
  MMWindow%MMKeyID% :=WinActive("a")
  MouseGetPos, , , , MMWinCtrl%MMKeyID%,
  Return
 
ScrollDown:
  LastWindow :=WinActive("a")
  StringRight, MMKeyID, A_ThisHotkey, 1
  MMWinID :=(MMWindow%MMKeyID%)
  MMWinCtrlID := (MMWinCtrl%MMKeyID%)
  WinActivate, ahk_id %MMWinID%
  loop
  {
    Send,{Down}
    GetKeyState, state, Numpad%MMKeyID%, P
    If state = u
      break
  }
  WinActivate, ahk_id %LastWindow%
  return

ScrollUp:
  LastWindow :=WinActive("a")
  StringRight, MMKeyID, A_ThisHotkey, 1
  MMWinID :=(MMWindow%MMKeyID%)
  MMWinCtrlID := (MMWinCtrl%MMKeyID%)
  WinActivate, ahk_id %MMWinID%
  loop
  {
    Send,%KeyUp%
    GetKeyState, state, Numpad%MMKeyID%, P
    If state = u
      break
  }
  WinActivate, ahk_id %LastWindow%
  return


150
What's the Best? / AddressBook Utility
« on: February 20, 2006, 04:16 PM »
This thread is a help for those of you looking for that perfect Address Book Utility.
Bellow, you'll find links for the various apps for the job, mentioned in this forum, a brief description of them, and some relevant DC links.
If you know of other interesting apps similar to those mentioned, please feel free to post a brief description of them below, and it will be added to this post.

Relevant posts on DC's forum about this matter:

  A-book: a very good, sync-able, alternative addressbook
  IDEA: Addressbook software (simple, yet powerful)
  Addressbook Software Mini-Shootout

On these posts, the following apps have been mentioned:

  Handy Addressbook
     (24$ full version, trial available)

  Phonedeck
     (freeware, development stopped)

  essentialPIM
     (29,95$ full version, trial available)

  Pimex
     (34.90$ full version, trial available)

  The three apps that seem to be the favourite in this matter are:

  A-book
     (29.95$ full version, trial available)
     Mini-Reviews Available: https://www.donationcoder.com/forum/index.php?topic=2292 (by superboyac)
                                        https://www.donationcoder.com/forum/index.php?topic=1155.0 (by m_s)

  CardScan
     (only available with the hardware card scanner, for at least 149.99$)
     Mini-Review Available https://www.donationcoder.com/forum/index.php?topic=2292 (by superboyac)

  azzcardfile
     (19$ full version, trial available)
     Discussion here: https://www.donationcoder.com/forum/index.php?topic=2292.msg15745#msg15745

I think this area is highly incomplete (i can't believe there are only these references in the whole forum), so, please help me complete it ;)
 

Pages: prev1 ... 25 26 27 28 29 [30] 31 32 33next
Go to full version