Search found 6 matches

by reinier maliepaard
Tue May 08, 2018 4:11 pm
Forum: newLISP in the real world
Topic: Running an executable on Linux
Replies: 3
Views: 4364

Running an executable on Linux

Hello, A minor thing about the newLisp documentation on running an executable on Linux. Given the following: ;; uppercase.lsp - Link example - from the Manual: (println (upper-case (main-args 1))) (exit) --- ;;make executable on Linux via command line: newlisp -x uppercase.lsp uppercase chmod 755 up...
by reinier maliepaard
Fri Feb 09, 2018 8:13 am
Forum: newLISP in the real world
Topic: Splitting words into syllables
Replies: 2
Views: 3800

Re: Splitting words into syllables

Hi, Thanks. Meanwhile I made a PHP solution: https://www.mcmusiceditor.com/hyphenate/ based on a well maintained source: https://github.com/vanderlee/phpSyllable . In the folder Languages you'll find the tex files, the software uses. For my project MC Musiceditor (that uses newlisp.dll) the PHP solu...
by reinier maliepaard
Mon Feb 05, 2018 5:42 pm
Forum: newLISP in the real world
Topic: Splitting words into syllables
Replies: 2
Views: 3800

Splitting words into syllables

Hello,

In Ruby I wrote one in Ruby (using a Ruby library, supporting 29 languages: https://github.com/halostatue/text-hyphen) to split words into syllables.

For newlisp I am not aware of such a solution. Is there anyone who knows a solution?

Thanks.

Reinier
by reinier maliepaard
Sun Jun 14, 2015 5:12 pm
Forum: newLISP in the real world
Topic: Pascal code - newLisp
Replies: 1
Views: 3059

Pascal code - newLisp

Hello, I've made a program in Object Pascal which works ok. I was wondering if the Pascal code below could be done with newLisp. That would for me a more convenient solution for my project, that already uses newlisp.dll (see http://www.mcmusiceditor.com). Here the central part of the Pascal code tha...
by reinier maliepaard
Sun Dec 08, 2013 4:06 pm
Forum: newLISP in the real world
Topic: MC Musiceditor 8.0.0
Replies: 0
Views: 2431

MC Musiceditor 8.0.0

Hello, I'm glad to announce my free/open source MC Musiceditor 8.0.0 (GPL2 or above). On http://www.mcmusiceditor.com you can find all sources (button Download). The reason for this separate announcement is that I rewrote many parts of the software with newLisp. Why? First: it appeared that my VBScr...
by reinier maliepaard
Fri Jul 26, 2013 10:21 am
Forum: newLISP in the real world
Topic: Alternative regex solution?
Replies: 0
Views: 2379

Alternative regex solution?

Hello, The following code adds to one or more apostroph's a backslash only when the (first) apostroph is preceded by a lowercase letter. My two-step-solution works, but I -newLisp newbie- have doubts on it. Does someone has a better idea? Thanks in advance. Regards, Reinier ............................