D Goel | 1 Aug 2005 01:34
X-Face

synth.el v. 0.2dev


 synth.el --- music sheet player, synthesizer, music via bash scripts

(The 2 bash scripts:

 * beep_to_speaker.sh
 * command-line invocation of synth.el

 ...  which I posted separately a few hours ago, are probably briefly
held up for moderator-review. If they don't show up by tomorrow, I
will add "add-on for synth.el" (which, it seems, makes them pass
automatic mod-check) to the subject and resend them. )





New Features since 0.1
======================
* A typo corrected everywhere in the M-x synth-choose-speaker section,
that makes the whole section finally make sense to the user.

New Features since 0.0
======================

* beep.el is now (more sanely) known as synth.el, following a name-change
  suggestion by RMS.


* The new letter r also stands for 'rest'.  This is an alternative to
(Continue reading)

D Goel | 1 Aug 2005 15:58
X-Face

synth.sh (add-on for synth.el) Re: synth.el v. 0.2dev

"D Goel" <deego <at> gnufans.org> writes:

>  synth.el --- music sheet player, synthesizer, music via bash scripts
>
> (The 2 bash scripts:
>
>  * beep_to_speaker.sh
>  * command-line invocation of synth.el
>
>  ...  which I posted separately a few hours ago, are probably briefly
> held up for moderator-review. If they don't show up by tomorrow, I
> will add "add-on for synth.el" (which, it seems, makes them pass
> automatic mod-check) to the subject and resend them. )

The posts haven't shown up. As promised, here is synth.sh, which helps
with the command-line invocation of synth.el

====================================================
#!/usr/local/bin/emacscvs --script
;; Time-stamp: <2005-07-31 15:54:19 deego>

;;  Note that you don't need this.  synth.el can generate bash
;;  equivalents for you which you can directly use from bash in any
;;  case.  
;; But, if you still want to be able to call synth.el from bash, you can
;; use this script to do so. 

;; Author: D. Goel
;; Copyright (C) 2005 and onwards  D. Goel

(Continue reading)

D Goel | 1 Aug 2005 15:57
X-Face

beep_to_speaker.sh (add-on for synth.el) Re: synth.el v. 0.2dev

"D Goel" <deego <at> gnufans.org> writes:

>  synth.el --- music sheet player, synthesizer, music via bash scripts
>
> (The 2 bash scripts:
>
>  * beep_to_speaker.sh
>  * command-line invocation of synth.el
>
>  ...  which I posted separately a few hours ago, are probably briefly
> held up for moderator-review. If they don't show up by tomorrow, I
> will add "add-on for synth.el" (which, it seems, makes them pass
> automatic mod-check) to the subject and resend them. )
>

The posts haven't shown up. As promised, here is beep_to_speaker.sh

====================================================
#!/usr/bin/octave -qf

### This is needed if you try out the sound-speaker option in the
### just-posted synth.el.  Place this file somewhere in your bash path and
### make it executable, say, in ~/bin/, do make sure you have octave-forge
### installed (apt-get install octave2.1 octave-forge)

## Syntax: beep_to_speaker.sh <freq Hz> <duration ms>  <volume> [more args]
## Every set of 3 consecutive arguments  are taken to mean
## freq,duration,volume, and we beep for them.

## To make anything its default value, specify a -2 for its value.
(Continue reading)

dsaklad | 6 Aug 2005 02:15
Picon
Picon

Rmail. emacs. spamassassin. emacs commands. Rmail commands.

Question
a.
For rmail in emacs where the system already runs spamassassin and
puts the spamassassin headers on messages, how do you sort out
spam type messages so that you can still check around in that
sorting in case of any false positives?...

b.
For novice users without expertise in writing dotfiles, for
novice users without expertise in programming, what emacs
commands, rmail commands can be used to sort out spam type
messages according to spamassassin headers rankings?

c.
How do you create a whitelist of favorite correspondents
so you can read their messages first?...
Zach Flynn | 8 Aug 2005 18:31
Picon

Using a Custom Emacs mode

Ok, so I have an emacs mode that I'd like to use but I don't know how to 
actually use it in emacs.  For some strange reason, I can't find that 
explained anywhere.  Can someone tell me how to use a mode that's 
written for emacs?  It's not one of those ones that emacs comes with.

-Zach
Kevin Rodgers | 8 Aug 2005 20:06
Picon
Favicon

Re: Using a Custom Emacs mode

Zach Flynn wrote:
 > Ok, so I have an emacs mode that I'd like to use but I don't know how to
 > actually use it in emacs.  For some strange reason, I can't find that
 > explained anywhere.  Can someone tell me how to use a mode that's
 > written for emacs?  It's not one of those ones that emacs comes with.

Short answer:

M-x load-file RET foo.el
M-x foo-mode

Long answer:

You will make things easier on yourself by putting foo.el in the system
site-lisp directory (C-h v load-path) or in any directory of your
choosing that you add to load-path (by modifying your ~/.emacs file).

You will make things run much faster if you M-x byte-compile-file foo.el
(before loading it).

foo.el will likely contain installation instructions in the comment
block near the top of the file, which will suggest autoload commands to
add to your system's default.el file or your personal .emacs file (so
you don't have to explicitly load it).

The installation instructions will also likely show you how to add an
entry to auto-mode-alist, to invoke foo-mode automatically when editing
files with that mode's conventional name.

P.S.  Please post questions to gnu.emacs.help in the future; that's
(Continue reading)

Zach Flynn | 8 Aug 2005 22:00
Picon

Re: Using a Custom Emacs mode

nvm.  The problem has been solved thanks to emacs wiki :-)

-Zach
Tom Breton | 8 Aug 2005 23:39

Re: Using a Custom Emacs mode

[F'ups to gnu.emacs.help]

Zach Flynn <purple.hands <at> gmail.com> writes:

> Ok, so I have an emacs mode that I'd like to use but I don't know how to 
> actually use it in emacs.  For some strange reason, I can't find that 
> explained anywhere.  Can someone tell me how to use a mode that's 
> written for emacs?  It's not one of those ones that emacs comes with.
> 
> -Zach

In the buffer you want to use it in, you can call it like any other
emacs command.  Like:

    M-x zachs-mode

You should also look at the Elisp docs under "Modes".  Especially read
about the variable auto-mode-alist.

--

-- 
Tom Breton, the calm-eyed visionary
Stefan Reichör | 12 Aug 2005 22:45
Picon

http://dict.leo.org

;;; leo-dict.el --- emacs interface for http://dict.leo.org

;; Copyright (C) 2005 by Stefan Reichoer

;; Author: Stefan Reichoer, <stefan <at> xsteve.at>

;; leo-dict.el is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; leo-dict.el is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;; leo-dict.el provides an emacs interface for the german<->english
;; dictionary on http://dict.leo.org

;; The latest revision of leo-dict.el can be found at: http://www.xsteve.at/prg/emacs

;; leo-dict.el needs my python script 'leo' to interact with the web interface
;; leo can be found here: http://www.xsteve.at/prg/python
(Continue reading)

Michael Olson | 12 Aug 2005 23:21
Face
Picon

wtf.el --- Look up conversational and computing acronyms

;; wtf.el --- Look up conversational and computing acronyms

;; Copyright (C) 2005  Michael Olson

;; This file is not part of GNU Emacs.

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

;;; Commentary:

;; Thanks to Trent Buck for `emacs-wiki-wtf.el', which inspired the
;; creation of `wtf.el'.

;; The terms were downloaded from
;; http://cvsweb.netbsd.org/bsdweb.cgi/src/share/misc/.  No copyright
;; notice was included, but since the program that makes use of them
;; (http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wtf/wtf) is in the
;; public domain, it seems reasonable to infer that the acronym files
(Continue reading)


Gmane